home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-12-11 | 666 b | 30 lines | [TEXT/MPS ] |
- // ULabelView.h
- // Copyright © 1991 by Apple Computer, Inc. All rights reserved.
- // Kent Sandvik DTS
- // This file contains the TLabelView class, used for displaying
- // the labels in the leftmost view
-
-
- #ifndef __LABELVIEW__
- #define __LABELVIEW__
-
- #ifndef __AEGESTALT__
- #include "UAEGestalt.h"
- #endif
-
-
- class TLabelView : public TView {
- public:
- // MEMBER FUNCTIONS
- TLabelView();
- virtual pascal void Initialize();
- virtual pascal void Draw(const VRect& area);
- virtual pascal void DrawLabels();
-
- // FIELDS
- CStr255 fLabel1, fLabel2, fLabel3, fLabel4, fLabel5,
- fLabel6, fLabel7, fLabel8, fLabel9, fLabel10,
- fLabel11, fLabel12;
- };
-
- #endif